home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000324_news@columbia.edu_Thu Dec 1 04:00:45 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10965
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 21:56:18 -0500
  3. Received: by apakabar.cc.columbia.edu id AA05756
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 21:56:17 -0500
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!caen!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!ix.netcom.com!netcom.com!jhurwit
  7. From: jhurwit@netcom.com (Jeffrey Hurwit)
  8. Subject: Alternative to ansi printing
  9. Message-Id: <jhurwitD045t9.K2t@netcom.com>
  10. Organization: Organization?  What organization?
  11. X-Newsreader: TIN [version 1.2 PL1]
  12. Date: Thu, 1 Dec 1994 04:00:45 GMT
  13. Lines: 25
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16.     For whatever this is worth to anyone...  It'll probably work on
  17.     other host systems, bus since Unix is what I'm familiar with...
  18.     
  19.     I got the idea while reading through some of the documentation for
  20.     MS-Kermit 3.14 BETA that ansi printing does no packet checking, but
  21.     simply switches output from your screen to your printer.  If you
  22.     have a modern error-correcting modem, this is probably fine, but if
  23.     your modem is old (like mine) and lacks that feature, there is the
  24.     potential for characters to be lost, bursts of line noise showing
  25.     up in your printout, etc.  If you're using MS-Kermit 3.13 or later
  26.     as your comm program, you can use it with C-Kermit (preferably
  27.     5A(190)) to print with full error correction.  Pipe whatever you
  28.     want printed into this:
  29.  
  30. /usr/5bin/echo '\033_rec\033\\\c'; kermit -s - -a PRN
  31.  
  32.     The echo command simulates an apc command to MS-Kermit (kermit -C
  33.     "apc rec" doesn't work; check your man page for echo to make sure
  34.     it supports the special functions), which puts MSK into receive
  35.     mode (be sure you have apc on-- SET TERM APC ON).  The options for
  36.     C-Kermit tell it to send from the standard input (from a pipe), and
  37.     send it as PRN.  MS-Kermit will accept PRN as a valid name; MS-DOS
  38.     will send it to your printer.
  39.  
  40.                         Jeff